home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ole2book.zip / BASICS.ZIP / STASTRIP / STASTRIP.RCV < prev    next >
Text File  |  1993-03-19  |  1KB  |  56 lines

  1. /*
  2.  * STASTRIP.RCV
  3.  * StatStrip Version 1.00, March 1993
  4.  *
  5.  * Version resource file for the StatStrip DLL
  6.  *
  7.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Software Design Engineer
  10.  * Microsoft Systems Developer Relations
  11.  *
  12.  * Internet  :  kraigb@microsoft.com
  13.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  14.  */
  15.  
  16.  
  17. #include <ver.h>
  18.  
  19. //Default is nodebug
  20. #ifndef DEBUG
  21. #define VER_DEBUG                   0
  22. #else
  23. #define VER_DEBUG                   VS_FF_DEBUG
  24. #endif
  25.  
  26. VS_VERSION_INFO VERSIONINFO 
  27.  FILEVERSION        1,0,0,0
  28.  PRODUCTVERSION     1,0,0,0
  29.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  30.  FILEFLAGS          VER_DEBUG
  31.  FILEOS             VOS_DOS_WINDOWS16
  32.  FILETYPE           VFT_DLL
  33.  FILESUBTYPE        VFT_UNKNOWN
  34.  
  35.  BEGIN
  36.    BLOCK "StringFileInfo"
  37.     BEGIN
  38.      BLOCK "040904E4"
  39.       BEGIN
  40.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  41.        VALUE "FileDescription", "Microsoft Windows(TM) StatStrip", "\0"
  42.        VALUE "FileVersion",     "1.00\0", "\0"
  43.        VALUE "InternalName",    "STASTRIP.DLL", "\0"
  44.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  45.        VALUE "OriginalFilename","STASTRIP.DLL", "\0"
  46.        VALUE "ProductName",     "Microsoft Windows(TM) StatStrip", "\0"
  47.        VALUE "ProductVersion",  "1.00\0"
  48.       END
  49.    END
  50.  
  51.    BLOCK "VarFileInfo"
  52.     BEGIN 
  53.      VALUE "Translation", 0x0409, 0x04E4
  54.     END 
  55.  END
  56.